home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / dc.postinst < prev    next >
Text File  |  2007-12-05  |  847b  |  36 lines

  1. #!/bin/sh
  2. #
  3. # This is the postinst script for the Debian GNU/Linux dc package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6. # Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
  7.  
  8. set -e
  9.  
  10. # Automatically added by dh_installdocs
  11. if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then
  12.     install-docs -i /usr/share/doc-base/dc
  13. fi
  14. # End automatically added section
  15. # Automatically added by dh_installmenu
  16. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  17.     update-menus
  18. fi
  19. # End automatically added section
  20.  
  21.  
  22. case "$1" in
  23.     configure|abort-remove|abort-deconfigure)
  24.     s="General commands"
  25.     install-info --quiet --section "$s" "$s" /usr/share/info/dc.info.gz
  26.     ;;
  27.  
  28.     abort-upgrade)
  29.         # Nothing to undo
  30.     ;;
  31.  
  32.     *)
  33.     echo "postinst called with unknown argument \`$1'" >&2
  34.     ;;
  35. esac
  36.